var github.com/klauspost/compress/gzip.le
12 uses
github.com/klauspost/compress/gzip (current package)
gunzip.go#L38: var le = binary.LittleEndian
gunzip.go#L198: hdr.ModTime = time.Unix(int64(le.Uint32(z.buf[4:8])), 0)
gunzip.go#L208: data := make([]byte, le.Uint16(z.buf[:2]))
gunzip.go#L235: digest := le.Uint16(z.buf[:2])
gunzip.go#L275: digest := le.Uint32(z.buf[:4])
gunzip.go#L276: size := le.Uint32(z.buf[4:8])
gunzip.go#L353: digest := le.Uint32(z.buf[:4])
gunzip.go#L354: size := le.Uint32(z.buf[4:8])
gzip.go#L129: le.PutUint16(z.buf[:2], uint16(len(b)))
gzip.go#L192: le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))
gzip.go#L286: le.PutUint32(z.buf[:4], z.digest)
gzip.go#L287: le.PutUint32(z.buf[4:8], z.size)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |